home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Mark Pilgrim / Voyeur 1.1.1 / source / Voyeur ƒ / v code ƒ / v generic open.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-30  |  1.4 KB  |  48 lines  |  [TEXT/KAHL]

  1. /**********************************************************************\
  2.  
  3. File:        v generic open.c
  4.  
  5. Purpose:    This module handles opening a document given through
  6.             apple events.
  7.  
  8.  
  9. Voyeur -- a no-frills file viewer
  10. Copyright ©1993-4, Mark Pilgrim
  11.  
  12. This program is free software; you can redistribute it and/or modify
  13. it under the terms of the GNU General Public License as published by
  14. the Free Software Foundation; either version 2 of the License, or
  15. (at your option) any later version.
  16.  
  17. This program is distributed in the hope that it will be useful,
  18. but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. GNU General Public License for more details.
  21.  
  22. You should have received a copy of the GNU General Public License
  23. along with this program in a file named "GNU General Public License".
  24. If not, write to the Free Software Foundation, 675 Mass Ave,
  25. Cambridge, MA 02139, USA.
  26.  
  27. \**********************************************************************/
  28.  
  29. #include "v generic open.h"
  30. #include "v.h"
  31. #include "program globals.h"
  32. #include "v error.h"
  33. #include "v window maintenance.h"
  34. #include "msg menus.h"
  35.  
  36. void GenericOpen(FSSpec *myFSS)
  37. {
  38.     gLastFile=gWhichFile;
  39.     gWhichFile=CountProgramWindows();
  40.     if (gWhichFile==MAX_WINDOWS)
  41.         HandleError(tooManyFilesErr);
  42.     else
  43.     {
  44.         gTheFS[gWhichFile]=*myFSS;
  45.         HandleError(OpenTheEditWindow());
  46.     }
  47. }
  48.